home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / ResBundle_ja.java < prev    next >
Text File  |  1998-09-11  |  854b  |  28 lines

  1. package symantec.itools.resources;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public class ResBundle_ja extends ListResourceBundle {
  6.    public Object[][] getContents() {
  7.        return contents;
  8.    }
  9.    static final Object[][] contents = {
  10.        // ScrollingTextBeanInfo
  11.        {"put", "\u3053\u3053\u306b"},
  12.        {"some", "\u5165\u529b\u3057\u305f"},
  13.        {"text", "\u6587\u5b57\u5217\u304c"},
  14.        {"in", "\u8868\u793a"},
  15.        {"here", "\u3055\u308c\u307e\u3059"},
  16.        // End ScrollingTextBeanInfo
  17.  
  18.        // Wizard
  19.        {"wizard_label_previous", "< \u524d"},
  20.        {"wizard_label_next",     "\u6b21 >"},
  21.        {"wizard_label_finish",   "\u5b8c\u4e86"},
  22.        {"wizard_label_cancel",   "\uff77\uff6c\uff9d\uff7e\uff99"},
  23.        {"wizard_label_help",     "\uff8d\uff99\uff8c\uff9f"},
  24.        // End Wizard
  25.    };
  26. }
  27.  
  28.